home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 09 - 1993 / 09.02 Feb 93 / Screen I⁄O Classes / B Classes / B.h / BBitMapPane.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-24  |  632 b   |  26 lines  |  [TEXT/KAHL]

  1. /*********************************************************
  2.  * BBitMapPane.h
  3.  *
  4.  * Pane class for BBitMapDoc class.
  5.  *
  6.  * © copyright 1992, KSS Scientific Consultants
  7.  *
  8.  ********************************************************/
  9.  
  10. #pragma once
  11.  
  12. #include <CBitMapPane.h>
  13.  
  14. class BBitMapPane : public CBitMapPane
  15. {
  16.  
  17. public:
  18.     void         IBBitMapPane(CView *anEnclosure, CBureaucrat *aSupervisor,
  19.                             short aWidth, short aHeight,
  20.                             short aHEncl, short aVEncl,
  21.                             SizingOption aHSizing, SizingOption aVSizing,
  22.                             LongRect *aBounds, CBitMap *aBitMap, Boolean makePort);
  23.                             
  24.     virtual void    InstallBitMap(BitMap *theBitMap);
  25. };
  26.